home *** CD-ROM | disk | FTP | other *** search
/ Daddy Day Care Press Kit / Daddy Day Care Press Kit.iso / pc / acrobat reader 5 pc / plug_ins / weblink.api / EXVW / 15006 < prev   
Text File  |  2002-12-13  |  1KB  |  29 lines

  1. gMaxQuesLen = max(
  2.     zstring_width(zstring: '$$$IDS_ADD_QUESTION'),
  3.     zstring_width(zstring: '$$$IDS_REMOVE_QUESTION'));
  4.  
  5. gMaxNumPLen = zstring_width(zstring: '$$$IDS_OF') + max_char_width()*6;
  6.  
  7. gVerticalGapHeight = gStaticTextHeight / 4;
  8.  
  9. dialog( name: '$$$/Dialogs/Weblink/PageRange', target_id: 'all ', first_tab: 'ques')
  10. {
  11.     view( align_children: align_left )
  12.     {
  13.         static_text( item_id: 'ques', width: gMaxQuesLen, next_tab: 'all ');
  14.  
  15.         radio( item_id: 'all ', name: '$$$/Dialogs/Weblink/PageRange/All', next_tab: 'from');
  16.         view( align_children: align_row )
  17.         {
  18.             radio( item_id: 'from', name: '$$$/Dialogs/Weblink/PageRange/From', next_tab: 'frPg');
  19.             edit_text( item_id: 'frPg', width: max_char_width( ) * 4, next_tab: 'tost');
  20.             static_text( item_id: 'tost', name: '$$$/Dialogs/Weblink/PageRange/To', next_tab: 'toPg');
  21.             edit_text( item_id: 'toPg', width: max_char_width( ) * 4, next_tab: 'NumP');
  22.             static_text(item_id: 'NumP', width: gMaxNumPLen);
  23.         }
  24.         
  25.         gap( height: gVerticalGapHeight );
  26.         
  27.         ok_cancel();
  28.     }
  29. }